I have just updated our servers from Lapper 7.0.4.10 to 7.0.6.1 and have two issues:
1) the following code is executed every minute, instead of once a day at 0 seconds, 0 minutes and 0 hour (start of day):
<?php
Event OnLapperStart()
RegisterScheduleAction( "0 0 0 * * * *", Reinitialise_server_1 );
RegisterScheduleAction( "30 0 0 * * * *", Reinitialise_server_2 );
EndEvent
Sub Reinitialise_server_1()
cmdLFS( "/msg ^1Server will be reinitialised in 30 seconds^8" );
EndSub
Sub Reinitialise_server_2()
cmdLFS("/reinit");
EndSub
?>
2) my error logs are spammed with the following message:
8/19/2018 10:51:24 PM -> Error on receiving answer from web
Because of issue 1, I have reverted back to the previous version I had, as the servers are otherwise unusable restarting every minute.